home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pparaoptions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-28  |  716 b   |  38 lines

  1. /*
  2.  *--- PParaOptions.h ------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PParaOptions__
  10. #define __PParaOptions__
  11.  
  12. class PGetParaOptions;
  13.  
  14. class PParaOptions
  15. {
  16.  
  17. public:
  18.  
  19.     PParaOptions
  20.       (    short    bKeepTog,
  21.         short    bColumnBreak,
  22.         short    bPageBreak,
  23.         short    bIncludeTOC,
  24.         short    nKeepWith,
  25.         short    nWidow,
  26.         short    nOrphan );
  27.     
  28.     PParaOptions(PGetParaOptions& options);
  29.  
  30. private:
  31.  
  32.     PParaOptions();
  33. };
  34.  
  35. #endif
  36.  
  37. // end of PParaOptions.h
  38.